hardware:
partitions:
"/":
size: 5 # 5 GB
"/home":
size: 0.5 # 0.5 GB
In partitions subsection you define the partition scheme. Partition sizes are specified in gigabytes (GB).
Example partition scheme:
hardware:
partitions:
"/":
size: 5 # 5 GB
"/home":
size: 0.5 # 0.5 GB
There must be only one root partition with ‘/’ mount point.
If there is no partition scheme specified, one root partition with size 1GB will be added, which is equivalent to this:
hardware:
partitions:
"/":
size: 1 # 1 GB
To specify filesystem type, add a type subsection.
Default operating system filesystem type is used when no type is specified.
hardware:
partitions:
"/":
size: 5
type: ext3 # currently supported: ext3 and ext4
Every partition specified in this section will be located on one disk.